interface package - перевод на русский
Diclib.com
Словарь онлайн

interface package - перевод на русский

Package; Java package; Пакет (Java)

interface package      
пакет программ стыковки, пакет интерфейсных программ
interface         
WIKIMEDIA DISAMBIGUATION PAGE
Physical interface; Interfaces; Interface (disambiguation); Interfaces in computing; Interfaces in computing (disambiguation); Interfacing (disambiguation)
interface 1. noun 1) поверхность раздела; граница раздела 2) comput. устройство сопряжения; связующее звено, интерфейс (между человеком и ЭВМ или машиной) 2. v. 1) comput. соединять, связывать с компьютером 2) служить средством связи
physical interface         
WIKIMEDIA DISAMBIGUATION PAGE
Physical interface; Interfaces; Interface (disambiguation); Interfaces in computing; Interfaces in computing (disambiguation); Interfacing (disambiguation)
физический интерфейс. Интерфейс между двумя оборудованиями.

Определение

interface
(interfaces, interfacing, interfaced)
1.
The interface between two subjects or systems is the area in which they affect each other or have links with each other.
...a witty exploration of that interface between bureaucracy and the working world.
N-COUNT
2.
If you refer to the user interface of a particular piece of computing software, you are talking about its presentation on screen and how easy it is to operate. (COMPUTING)
...the development of better user interfaces.
N-COUNT: usu n N
3.
In computing and electronics, an interface is an electrical circuit which links one machine, especially a computer, with another. (TECHNICAL)
N-COUNT
4.
If one thing interfaces with another, or if two things interface, they have connections with each other. If you interface one thing with another, you connect the two things. (TECHNICAL or FORMAL)
...the way we interface with the environment...
The different components all have to interface smoothly...
He had interfaced all this machinery with a master computer.
V-RECIP: V with n, pl-n V, V n with n, also V pl-n

Википедия

Package (Java)

Java package (пакет Java) — механизм, позволяющий организовать Java классы в пространстве имен аналогично модулям в языке программирования Модула.

Java пакеты могут содержаться в сжатом виде в JAR файлах. Обычно в пакеты объединяют классы одной и той же категории, либо предоставляющие сходную функциональность.

  • Каждый пакет предоставляет уникальное пространство имен для своего содержимого.
  • Допустимы вложенные пакеты.

Классы, определенные без явно заданных модификаторов доступа (public, protected, private), видимы только внутри пакета.

  • private — доступ только внутри класса (наиболее рекомендуемый)
  • (без модификатора) — только внутри пакета (по умолчанию)
  • protected — межпакетный доступ только для подклассов
  • public — межпакетный доступ (наименее рекомендуемый)